home *** CD-ROM | disk | FTP | other *** search
- // -----
- // VDL168.txt
- // Copyright 1996 Claris
- // -----
-
-
- // Prompt for document title
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
-
- //This section contains all localizable string constants for this VDL program. Be sure to
- //include the backslash character at the end of each line of a multi-line string, except for the last line.
- //You may also flatten multiline constants into a single line, if you prefer
-
- #define kLit1 " Most browsers will display this title at the top of the window"\
- " when viewing the page. You can change the title later, by"\
- " selecting Document Options from the Edit menu."
-
-
- //Localized Fonts
-
- #if Platform_Mac
- #define SmallFont Font = {Geneva, 9, {Plain}}
- #endif
-
-
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
-
- //This section contains integer constants that are used to format this VDL program.
- //These are localizable - they only need to be changed if the localized strings
- //are sufficiently longer than the US strings. Localize the strings first, then the constants.
-
- //Basic width of the dialog. Layout will follow this width. Dialog height is
- //computed from wrapped heights of the static text, and other components.
- #define kDialogWidth 420
-
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
-
- //No further localizable data past this point
-
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
-
-
- Margin(10,10,10,10, BackColor = Dialog, Width = kDialogWidth)
- VList(Width = UseParent)
- {
- StaticText(prompt, Width = UseParent);
-
- Spacer(Height = 6, Width = 0, ScaleV);
- EditText(result, Width = UseParent, BackColor = {65535, 65535, 65535} );
- Spacer(Height = 6, Width = 0, ScaleV);
-
- StaticText(
- kLit1,
-
- #if Platform_Mac
- SmallFont,
- #endif
-
- Width = UseParent, Alignment = Center );
-
- Spacer(Height = 6, Width = 0, ScaleV);
- StandardDialogButtonsH;
- } //VList
-